home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / nt / source.exe / POSIX / BSDPSX / RINDEX.C < prev    next >
C/C++ Source or Header  |  1992-06-27  |  145b  |  11 lines

  1. #include <string.h>
  2. /*
  3.  * Rindex:  Posix implementation DF_MSS
  4.  */
  5.  
  6.  
  7. char *rindex(const char *p, int ch)
  8. {
  9.   return(strrchr(p, ch));
  10. }
  11.